ci: per-PR build/test matrix + Hermes release watcher - #9
Merged
Conversation
- ci.yml: on PR/push, run gen-check + each plugin's install/build/test in isolation; matrix built from plugins.manifest.json, toolchain keyed on language/packageManager. - on-hermes-release.yml: weekly watcher for NousResearch/hermes-agent releases (Hermes' harness isn't a package dep, so no Dependabot). Runs the compat agent scoped to hermes-agent/ and opens one PR; idempotent via harness.lastProcessedRelease (baseline v2026.7.7.2) + existing-PR guard. - manifest: add hermes lastProcessedRelease baseline; correct versionScheme to calver. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Closes the two automation gaps left after the initial monorepo push.
Per-PR CI (
.github/workflows/ci.yml) — runsgen-check(generated constants insync with
shared/bitrouter.json) plus a matrix that installs/builds/tests each islandpackage in isolation, driven entirely by
plugins.manifest.json. Toolchain setup iskeyed on each plugin's
language/packageManager. This PR exercises it live.Hermes release watcher (
.github/workflows/on-hermes-release.yml) — weekly cron overNousResearch/hermes-agentreleases. Hermes isn't a package dependency, so it can't useDependabot like openclaw/pi. On a new release it runs the compat agent scoped to
hermes-agent/and opens one PR. Idempotent viaharness.lastProcessedRelease(baselined at
v2026.7.7.2, bumped in each PR on merge) + an existing-PR guard for thedeterministic
chore/hermes-<tag>branch.Expected checks on this PR
gen-check,openclaw,pi,hermes-agent— the matrix mirrors the local runs(openclaw 133 / pi 39 / hermes 65 tests).
Still needed to make the agentic workflows fire
BITROUTER_API_KEYrepo secret — required by theanomalyco/opencode/githubstep inthis watcher and in
on-bitrouter-release.yml.on-bitrouter-release.ymlneedsbitrouter/bitrouterto send therepository_dispatch(
bitrouter-release) on release.🤖 Generated with Claude Code